home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PsL Monthly 1993 December
/
PSL Monthly Shareware CD-ROM (December 1993).iso
/
prgmming
/
dos
/
tools
/
pcuser.com
/
FILEXIST.C
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1988-11-05
|
264 b
|
14 lines
#include <std_lib.h>
int filexist (filename)
char *filename;
{
FILE *fp;
/* Return TRUE if the file already exists.
* Or FALSE if the file does not exist.
*/
return ( ((fp = fopen (filename, "r")) != NULL) ? TRUE: FALSE );
}